A11y Bug 10987406: Announce actual font size value on increase/decrease in Article mode.#669
Merged
aanchalbhansali merged 3 commits intoJul 7, 2026
Conversation
…crease
When users click the increase or decrease font size buttons in Article
mode, the screen reader now announces the updated font size value (e.g.
"Font size increased to 18" or "Font size decreased to 14") instead of
the generic static labels.
Two new localized template strings are added:
WebClipper.Accessibility.ScreenReader.FontSizeIncreasedTo
WebClipper.Accessibility.ScreenReader.FontSizeDecreasedTo
The {0} placeholder is replaced with the current articleFontSize value
at announcement time, matching the pattern used by other dynamic
announcements in the codebase (e.g. pdfPageProgress).
Copilot
AI
changed the title
[WIP] Fix screen reader announcement for font size changes
fix(a11y): announce actual font size value on increase/decrease
Jul 6, 2026
aanchalbhansali
approved these changes
Jul 7, 2026
KethanaReddy7
approved these changes
Jul 7, 2026
Contributor
|
@copilot resolve the merge conflicts in this pull request....please keep both the master branch changes and this branch changes |
…reader-font-size-announcement # Conflicts: # src/scripts/renderer.ts
Contributor
Author
Merge conflicts resolved in |
KethanaReddy7
approved these changes
Jul 7, 2026
aanchalbhansali
approved these changes
Jul 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Screen readers announced only static labels ("Increase font size" / "Decrease font size") when users adjusted font size in Article mode — never the updated value, leaving assistive technology users without feedback on the current state.
Changes
New localized template strings in the
stringsobject:fontSizeDecreasedTo→"Font size decreased to {0}"fontSizeIncreasedTo→"Font size increased to {0}"Updated font size click handlers to substitute the actual
articleFontSizevalue at announcement time:Follows the existing
{0}-replacement pattern used bypdfPageProgressand similar dynamic announcements in the renderer.Original prompt
Work item: AB#10987406
Created via Azure DevOps